Validate User Service Transaction Pin Token
GET /api/v1/users/{userId}/services/transactions/pin/{token}/validate
Description
Validate a user service transaction pin token.
Path Parameters
| Name | Type | Description |
|---|---|---|
token | string | The token to validate (path) |
userId | string | The user ID (path) |
Request Headers
| Name | Type | Description |
|---|---|---|
authorizer-api-key | string | The authorizer API key (header) |
authorizer-api-code | string | The authorizer API code (header) |
Response Code: 200 - OK
Description
The token was validated successfully.
Response Fields
| Field | Type | Description |
|---|---|---|
status | boolean | Indicates if the operation was successful |
statusCode | integer | Status code |
message | string | Response message |
data | object | Data related to the validation |
errors | array | List of error messages, if any |
Example
{
"status": true,
"statusCode": 0,
"message": "Token validated successfully",
"data": {},
"errors": [
{
"message": "Some error occurred",
"descriptiveMessage": "Detailed error message"
}
]
}
Method: GET
>http://your-api-url/api/v1/users/{userId}/services/transactions/pin/{token}/validate
Headers
| Content-Type | Value |
|---|---|
| authorizer-api-key | {{authorizerApiKey}} |
| authorizer-api-code | {{authorizerApiCode}} |
🔑 Authentication bearer
| Param | Value | Type |
|---|---|---|
| token | {{accessCode}} | string |
LANGUAGE
CURL REQUEST
curl --request GET \
--url /api/v1/users/{userId}/services/transactions/pin/{token}/validate \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!